3d427e5ae34e0e66cc1aef348c2d164ecca4ee45,portal-impl/src/com/liferay/portlet/asset/service/impl/AssetVocabularyServiceImpl.java,AssetVocabularyServiceImpl,getGroupVocabulariesByTitle,#number#String#number#number#,261
Before Change
List<AssetVocabulary> assetVocabularies =
new ArrayList<AssetVocabulary>();
hits = getHits(groupId, title, start, end);
List<Document> documents = hits.toList();
After Change
long groupId, String title, int start, int end)
throws PortalException, SystemException {
Hits hits = getHits(groupId, title, start, end);
Document[] documents = hits.getDocs();
List<AssetVocabulary> assetVocabularies =
new ArrayList<AssetVocabulary>(documents.length);
for (Document document : documents) {
long vocabularyId = GetterUtil.getLong(